Hi
This is a list:
ggplot(all_eminem, aes(x = track.album.release_date, y = valence, color = category, size = track.popularity))+
geom_boxplot()+
theme(axis.text.x = element_text(angle =-90),
axis.title.x = element_blank())+
ggtitle("The change in valence of Eminem's music over the years")test for text?
ggplot(all_eminem, aes(x = track.album.name, y = speechiness, color = category, size = track.popularity))+
geom_boxplot()+
theme(axis.text.x = element_text(angle =-90))ggplot(all_eminem, aes(x = track.album.release_date, y = speechiness, color = category, size = track.popularity))+
geom_point()+
theme(axis.text.x = element_text(angle =-90))first_plot <- ggplot(all_eminem, aes(x = track.album.release_date, y = speechiness, color = category, size = track.popularity))+
geom_point()+
theme(axis.text.x = element_text(angle =-90))